mainmenu "SPL Example"

menu "Linking"
    config LINKER_OUTPUT_FILE
        string
        prompt "LINKER_OUTPUT_FILE"
        default "my_main.exe"
        help
          The output file generated by the linker (e.g. my_main.exe).

    config LINKER_BYPRODUCTS_EXTENSIONS
        string
        prompt "LINKER_BYPRODUCTS_EXTENSIONS"
        default "map"
        help
          The extensions of other byproducts generated by the linker (e.g. map)
endmenu

menu "Feature Model"
    config USE_COMPONENT
        bool "Enable features of component"
        default n
endmenu
